cf4ded6f64d28ceea707e1ed465c2a80363a258d,plugins/modelchecker/source_gen/jetbrains/mps/ide/modelchecker/actions/FindlAllBrokenReferences_Action.java,FindlAllBrokenReferences_Action,doExecute,#AnActionEvent#Map#,68
Before Change
return SModelStereotype.isUserModel(md);
}
}));
((Project) MapSequence.fromMap(_params).get("project")).getComponent(ProjectPluginManager.class).getTool(ModelCheckerTool_Tool.class).checkModels(models, ((IOperationContext) MapSequence.fromMap(_params).get("operationContext")), true, new BrokenReferencesFinder());
} catch (Throwable t) {
if (LOG.isEnabledFor(Priority.ERROR)) {
LOG.error("User's action execute method failed. Action:" + "FindlAllBrokenReferences", t);
After Change
return SModelStereotype.isUserModel(md);
}
}));
ModelCheckerTool.getInstance(((Project) MapSequence.fromMap(_params).get("project"))).checkModels(models, ((IOperationContext) MapSequence.fromMap(_params).get("operationContext")), true, new BrokenReferencesFinder());
} catch (Throwable t) {
if (LOG.isEnabledFor(Priority.ERROR)) {
LOG.error("User's action execute method failed. Action:" + "FindlAllBrokenReferences", t);